home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.4 Applications 1997 August
/
SGI IRIX 6.4 Applications 1997 August.iso
/
dist
/
mmailp.idb
/
usr
/
lib
/
Zmail
/
samples
/
zscript
/
to-do.zsc.z
/
to-do.zsc
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-01-22
|
377 b
|
23 lines
# Sample Z-Script function: show_As
# button: To Do
function show_As() {
#%
# show_As
#
# Show all messages that have been marked with an "A" priority.
#%
unset As
pick -p A | set As
if $?As
ask -l A "Important Messages" $As
if $status == 0
display $A
endif
unset A
else
echo -d "Nothing marked A."
endif
}
button -n "To Do" show_As